From: Jan Djärv Date: Thu, 10 Dec 2009 19:27:37 +0000 (+0000) Subject: configure.in: Check for RSVG if GNUStep is used. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~8976 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=ad38561a6ee5d90129a7a643a13a8416267dc90a;p=emacs.git configure.in: Check for RSVG if GNUStep is used. --- diff --git a/ChangeLog b/ChangeLog index f33f84c64c7..fbd8c01daf7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2009-12-10 Jan Djärv + + * configure.in: Check for RSVG if GNUStep is used. + 2009-12-09 Jan Djärv * configure.in: Don't check for RSVG or GConf unless X11 is used. diff --git a/configure b/configure index 79dfe0fdbdf..8372aab03c3 100755 --- a/configure +++ b/configure @@ -11327,7 +11327,7 @@ fi ### Use -lrsvg-2 if available, unless `--with-rsvg=no' is specified. HAVE_RSVG=no -if test "${HAVE_X11}" = "yes"; then +if test "${HAVE_X11}" = "yes" || test "${NS_IMPL_GNUSTEP}" = "yes"; then if test "${with_rsvg}" != "no"; then RSVG_REQUIRED=2.11.0 RSVG_MODULE="librsvg-2.0 >= $RSVG_REQUIRED" diff --git a/configure.in b/configure.in index 8320448d855..32208c76170 100644 --- a/configure.in +++ b/configure.in @@ -1610,7 +1610,7 @@ fi ### Use -lrsvg-2 if available, unless `--with-rsvg=no' is specified. HAVE_RSVG=no -if test "${HAVE_X11}" = "yes"; then +if test "${HAVE_X11}" = "yes" || test "${NS_IMPL_GNUSTEP}" = "yes"; then if test "${with_rsvg}" != "no"; then RSVG_REQUIRED=2.11.0 RSVG_MODULE="librsvg-2.0 >= $RSVG_REQUIRED"